home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / Telnet 2.6.1d1 4⁄26⁄94 Folder / source / vr / vdevice.h < prev    next >
Text File  |  1993-06-22  |  440b  |  18 lines

  1. #ifndef VDEVS
  2. #define VDEVS
  3. /*
  4. *  Virtual device record.
  5. *  Defines the handles and hooks required for the vdevice code.
  6. */
  7.  
  8. typedef struct {
  9.     GDHandle vgd;                /* GDevice created off-screen */
  10.     CGrafPort vport;            /* Virtual port created in the GDevice */
  11.     unsigned char *bp;            /* base pointer of data in the virtual device */
  12.     Rect bounds;                /* boundary rectangle for vdevice */
  13. } VDevice, *VDevicePtr;
  14.  
  15.  
  16. #endif
  17.  
  18. #include "vdevice.proto.h"